home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE10 / PRINTING / LISTING5.PAS < prev   
Encoding:
Pascal/Delphi Source File  |  1996-05-22  |  498 b   |  17 lines

  1. procedure TForm1.Print21Click(Sender: TObject);
  2. var
  3.   ImWidth, ImHeight: Integer;
  4. begin
  5.   Printer.BeginDoc; // Start a print job
  6.   try
  7.     { Calculate the image size for the destination canvas }
  8.     ImWidth := Printer.PageWidth div 2;
  9.     ImHeight := trunc((ImWidth / Image1.Width) * Image1.Height);
  10.     { Print the bitmap }
  11.     Printer.Canvas.StretchDraw(Rect(0, 0, ImWidth, ImHeight),
  12.       Image1.Picture.Graphic);
  13.   finally
  14.     Printer.EndDoc; // End the print job
  15.   end;
  16. end;
  17.